home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Scheduling / Cassandra / Source / Today.h < prev    next >
Encoding:
Text File  |  1990-10-27  |  778 b   |  33 lines

  1. //
  2. // Today.h
  3. // Copyright (c) 1989, 1990 by Jiro Nakamura 
  4. // All rights reserved
  5. //
  6. // Handles the Today window
  7. //
  8. // RCS Information
  9. // Revision Number->    $Revision: 2.3 $
  10. // Last Revised->    $Date: 90/10/27 17:39:58 $
  11. //
  12.  
  13. #import "TextWindow.h"
  14.  
  15. @interface Today:TextWindow
  16. {
  17.     int       hour, minute;
  18.     BOOL militaryTime, showSeconds, showTime;
  19.     BOOL miniaturized;
  20.     id global;        // Set by IB. Accessor to Global object
  21. }
  22. - open:sender;            // Open and display today window
  23. - close;            // close window
  24. - save;                // Save window (override superClass
  25.                 // implementation since we don't need to save
  26. - update;            // Update window
  27. - timeUpdate:sender;
  28. - defaultsDidChange: sender;
  29. - windowDidMiniaturize: sender;
  30. - windowDidDeminiaturize: sender;
  31. - setGlobal: anObject;        // For IB
  32. @end
  33.